home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
knowhow4
/
global.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-10
|
741b
|
26 lines
/* KNOW-HOW uses some arrays for transferring messages with
non-standart formate. global[MAX_GLOBAL == 200] - the array
of char*; global_i[MAX_GLOBAL_I == 24] - array of integers.
Usually, if we choose n-th item of menu, int global_num
keeps n, and global[global_num] may keep item string (or not,
for example for menu with non-text (pictograms) items).
event e keeps last event obtained.
*/
#ifndef __GLOBAL_H_
#define __GLOBAL_H_
#include "addevent.h"
extern int global_num;
extern char* global[];
extern int global_i[];
extern event e;
#define MAX_GLOBAL 511
#define MAX_GLOBAL_I 511
void global_remove();
void global_init();
#endif __GLOBAL_H_